projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
dd7e616
)
(x_draw_fringe_bitmap) [MAC_OSX]: Fix last change.
author
YAMAMOTO Mitsuharu
<mituharu@math.s.chiba-u.ac.jp>
Sat, 23 Jun 2007 01:53:40 +0000
(
01:53
+0000)
committer
YAMAMOTO Mitsuharu
<mituharu@math.s.chiba-u.ac.jp>
Sat, 23 Jun 2007 01:53:40 +0000
(
01:53
+0000)
src/macterm.c
patch
|
blob
|
history
diff --git
a/src/macterm.c
b/src/macterm.c
index 0d7aa68bbea49a0e9c65131bfa2711795d8f83db..52709c757f299b2cd0a7e194f1c135e3b81bd0c1 100644
(file)
--- a/
src/macterm.c
+++ b/
src/macterm.c
@@
-2243,13
+2243,16
@@
x_draw_fringe_bitmap (w, row, p)
ny = row->visible_height;
}
- if (
left + width == bx
)
+ if (
bx >= 0
)
{
- bx = left + sb_width;
- nx += width - sb_width;
+ if (left + width == bx)
+ {
+ bx = left + sb_width;
+ nx += width - sb_width;
+ }
+ else if (bx + nx == left)
+ nx += width - sb_width;
}
- else if (bx + nx == left)
- nx += width - sb_width;
}
}